@extends('layouts.admin.app') @section('css') @endsection @section('content')
@if ($errors->any())
{{trans('common.whoops')}}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ trans('admin.edit_profile')}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
@if ($errors->has('bank_name')) {{ $errors->first('bank_name') }} @endif
@if ($errors->has('account_name')) {{ $errors->first('account_name') }} @endif
@if ($errors->has('account_number')) {{ $errors->first('account_number') }} @endif
@if ($errors->has('iban_code')) {{ $errors->first('iban_code') }} @endif

@error('profile_image')
{{ $message }}
@enderror
@endsection @section('page_js') @endsection @section('js') @endsection