@extends('layouts.admin')
@section('content-title')
{{ __('illustrations.Edit illustration') }}
@endsection
@section('content-breadcrumbs')
{{ Breadcrumbs::render('admin.illustrations.edit')}}
@endsection
@section('css')
@endsection
@section('content')
{{-- {!!Form::open()->locale('illustrations')->post()->multipart()->route('admin.illustration.update')!!} --}}
{!!Form::open()->post()->multipart()->route('admin.institution.update')->fill($data)!!}
{!!Form::hidden('id')!!}
{!!Form::text('name', 'Nom')->placeholder('Nom')!!}
{!!Form::text('abbreviation', 'Abbreviation')->placeholder('Abbreviation')!!}
{!!Form::text('phone', 'Téléphone')->placeholder('Téléphone')!!}
{!!Form::text('email', 'E-mail')->placeholder('E-mail')!!}
{!!Form::text('address', 'Adresse')->placeholder('Adresse')!!}
{!!Form::file('logo', 'Logo')->placeholder('Logo')->id('logoIns')!!}
{!!Form::file('card', 'Carte')->placeholder('Carte')->id('filer')!!}
{!!Form::text('description', 'Description')->placeholder('Description')!!}
{!!Form::submit('Update')->id('update')!!}
{!!Form::close()!!}
@endsection
@section('js')
{{-- Select2 --}}
@endsection