@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.speaker.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

{{ trans('cruds.speaker.fields.name_helper') }}

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

{{ trans('cruds.speaker.fields.description_helper') }}

@if($errors->has('full_description'))

{{ $errors->first('full_description') }}

@endif

{{ trans('cruds.speaker.fields.full_description_helper') }}

@if($errors->has('photo'))

{{ $errors->first('photo') }}

@endif

{{ trans('cruds.speaker.fields.photo_helper') }}

@if($errors->has('twitter'))

{{ $errors->first('twitter') }}

@endif

{{ trans('cruds.speaker.fields.twitter_helper') }}

@if($errors->has('facebook'))

{{ $errors->first('facebook') }}

@endif

{{ trans('cruds.speaker.fields.facebook_helper') }}

@if($errors->has('linkedin'))

{{ $errors->first('linkedin') }}

@endif

{{ trans('cruds.speaker.fields.linkedin_helper') }}

@endsection @section('scripts') @stop