@extends('layouts.partials.master') @section('title', 'Editar Utilizador') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Utilizador']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('fiscal_number'))
{{ $errors->first('fiscal_number') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('birth_date'))
{{ $errors->first('birth_date') }}
@endif
@if ($errors->has('notes'))
{{ $errors->first('notes') }}
@endif

formatos: jpeg, png, jpg, gif

{{ $errors->first('photo_image') }}
@if ($user->photo_img) Imagem @endif
@include('layouts.components.section-marker', ['section_name' => 'Autenticação'])
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if ($errors->has('2fa'))
{{ $errors->first('2fa') }}
@endif
@endsection @push('scripts') @include('usr_users.partials.locationScript') @endpush