@extends('layout') @section('content')
Profile
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('city_code')) {{ $errors->first('city_code') }} @endif
@endsection