@extends('layouts.app') @push('css_lib')
@endpush @section('content')
{{trans('lang.favorite_plural')}}
|
{{trans('lang.favorite_desc')}}
{{trans('lang.dashboard')}}
{{trans('lang.favorite_plural')}}
{{trans('lang.favorite_edit')}}
@include('flash::message') @include('adminlte-templates::common.errors')
@can('favorites.index')
{{trans('lang.favorite_table')}}
@endcan @can('favorites.create')
{{trans('lang.favorite_create')}}
@endcan
{{trans('lang.favorite_edit')}}
{!! Form::model($favorite, ['route' => ['favorites.update', $favorite->id], 'method' => 'patch']) !!}
@include('favorites.fields')
{!! Form::close() !!}
@include('layouts.media_modal') @endsection @push('scripts_lib') @endpush