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

@csrf @method('PUT')
@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
@endsection