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

Add Trainer

@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@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

@if ($errors->has('photo_id'))
{{ $errors->first('photo_id') }}
@endif
@stop @section('script') @stop