@php $breadcrumb = [ [ 'link' => null, 'name' => 'Account', ], [ 'link' => null, 'name' => 'Profile', ], ]; $blade_data = [ 'title' => 'Change Password', 'blade_name' => 'admin.subadmin.edit', 'options' => [ 'lazy' => true, ], 'breadcrumb' => $breadcrumb, ]; $routeLink = $blade_data['routesLink'] ?? 'admin.memberships'; @endphp @extends('admin.layouts.app') @section('page-title', $blade_data['title']) @section('breadcrumb') @endsection @section('content')
@csrf
@error('old_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@endsection @section('javascript') @endsection