@extends('layouts.admin') @section('content-title') {{ __('functionaries.Functionaries managements') }} @endsection @section('content-breadcrumbs') {{ Breadcrumbs::render('admin.functionaries')}} @endsection @section('content')
Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere
@if(session()->has('success')) @endif @if(session()->has('error')) @endif @foreach($functionarys as $functionary) @endforeach
# {{ __('functionaries.last name') }} {{ __('functionaries.first name') }} {{ __('functionaries.Biography') }}
@if($functionary->personal_image_url=='0') @else @endif
{{ $functionary->last_name }} {{ $functionary->first_name}} {{ $functionary->biography}} {{ __('admin.Edit') }} {!!Form::open()->locale('')->post()->route('admin.functionaries.delete')->attrs(['style'=>'display:inline','class'=>'deletefunctionary'])!!} {!!Form::hidden('id')->value($functionary->id)!!} {!!Form::hidden('personal_image_url')->value($functionary->personal_image_url)!!} {!!Form::submit('')->attrs(['class' => 'btn-sm'])->color('danger')!!} {!!Form::close()!!}
{{ $functionarys->links() }}
@endsection @section('js') @endsection