@extends('layouts.app') @section('content-header')

{{__('cattle.edit_c_type')}}

@endsection @section('content')

{{ !empty($cattleType->title) ? ucfirst($cattleType->title) : 'Cattle Type' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('cattle_types.form', ['cattleType' => $cattleType,])
@endsection