@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('global.edit') }}
@stop
@section('body')
{!! Form::open(['route' => 'my_account.update', 'method' => 'PUT', 'class' => 'form']) !!}
{!! Form::hidden('id', $item->id) !!}
{!! Form::label('password', trans('validation.attributes.password').'*:') !!}
{!! Form::password('password', ['class' => 'form-control']) !!}
{!! Form::label('password_confirmation', trans('validation.attributes.password_confirmation').'*:') !!}
{!! Form::password('password_confirmation', ['class' => 'form-control']) !!}
{!! Form::close() !!}
@stop