@extends('layouts.app') @section('form-title') {{ __('Profile') }} @endsection @section('breadcrumb') @endsection @section('content')
@method('PUT') @csrf
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! countries(156) !!} @if($errors->has('country'))

{{ $errors->first('country') }}

@endif
@if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
{{ $user->email }} @if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('pass'))

{{ $errors->first('pass') }}

@endif
@if($errors->has('conf_pass'))

{{ $errors->first('conf_pass') }}

@endif
@if($errors->has('avatar'))

{{ $errors->first('avatar') }}

@endif
user profile image
@if($errors->has('avatar'))

{{ $errors->first('avatar') }}

@endif
@endsection