@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.trainer.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.trainer.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.trainer.fields.email_helper') }}
@if($errors->has('designation'))
{{ $errors->first('designation') }}
@endif {{ trans('cruds.trainer.fields.designation_helper') }}
@if($errors->has('organization'))
{{ $errors->first('organization') }}
@endif {{ trans('cruds.trainer.fields.organization_helper') }}
@if($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif {{ trans('cruds.trainer.fields.mobile_helper') }}
@endsection