@extends('admin.layout.master') @section('content')
@csrf
@if ($errors->has('cat_id'))
{{ $errors->first('cat_id') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('contact'))
{{ $errors->first('contact') }}
@endif
@if ($errors->has('height'))
{{ $errors->first('height') }}
@endif
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
@if ($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
@endsection