@extends('layouts.adminpages') @section('content')
 
Crear Miembro - {{$shop->name}}

@if($search)
{{$message}}
@if(!is_null($member))
{{ucwords($member->name).' '.ucwords($member->surname)}} - {{$member->document}}
@else
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('document')) {{ $errors->first('document') }} @endif
@if ($errors->has('identification')) {{ $errors->first('identification') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('charge')) {{ $errors->first('charge') }} @endif
@endif @endif
@endsection