@extends('layouts.app') @section('content-header')
{{__('cattle.create_cattle')}}
{{__('cattle.page_title')}}
{{__('commons.create')}}
@endsection @section('content')
{{__('cattle.create_new_cattle')}}
{{ csrf_field() }}
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @include ('cattle.form', ['cattle' => null,])
@endsection