@include('partials._head') @include('partials._nav')
@include('partials._header_tables',['title'=>'Licence','add'=>'Dodaj licencu','route'=>'licence.create']) @if (session('success'))
{{ session('success') }}
@endif @if (session('error_msg'))
{{ session('error_msg') }}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include('licences.tables')
@include('partials._javascript', ['masterView' => 'licence_show']) @yield('scripts')