@extends('layout.master') @section('css') @stop @section('content')
@csrf

Edit Trainer

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('pin_price'))
{{ $errors->first('pin_price') }}
@endif
@if ($errors->has('trainer_type'))
{{ $errors->first('trainer_type') }}
@endif
@stop @section('script') @stop