@extends('admin.layout') @section('custom-style') @endsection @section('content') Edit User details Users Edit @php //dd($user); @endphp Edit user details @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(\Session::has('error')) {!! \Session::get('error') !!} @endif @if(\Session::has('success')) {!! \Session::get('success') !!} @endif {{csrf_field()}} First name* Surname Email* Phone* Country* @foreach($countries as $country) country_id == $country->id ? 'selected' : '' }}> {{ $country->country_name }} @endforeach Password* Profile Image (Portrait - 1250 * 1333 MX - 2MB)* Profile Preview (Portrait) profile_image" }}" alt="Profile Thumbnail"> @endsection @section('custom-scripts') @endsection