@component('components.beardcrumb')
{{-- /*Page Title Goese Here in this slot variable*/ --}}
@slot('title')
@lang('menu.edit_title')
@endslot
@if(Auth::user()->can('Menu index'))
{{-- /* Create New Route Will Be goes here */ --}}
@slot('route_name')
menu.index
@endslot
@slot('btn_class')
btn btn-primary
@endslot
@slot('icon')
fa fa-eye
@endslot
@slot('btn_name')
@lang('menu.view')
@endslot
@endif
@endcomponent
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@push('footer_script')
@endpush
@endsection