@extends('admin.layouts.master') @section('content')

{!! __('heading.update_profile') !!}

{!! Form::model($result, ['route' => ['admin.setting.updateProfile', $result->id], 'method' => 'post', 'id' => 'ajax-submit']) !!}
{!! Form::label('name', __('field.name')) !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('email', __('field.email')) !!} {!! Form::text('email', null, ['class' => 'form-control']) !!}
{!! Form::label('password', __('field.password')) !!} {!! Form::password('password', ['class' => 'form-control']) !!}
{!! Form::label('image', __('field.image')) !!}
{!! Form::file('image', ['class' => 'custom-file-input', 'id' => 'image']) !!} {!! Form::label('image', __('field.choose_file'), ['class' => 'custom-file-label']) !!}
{!! Html::image(apiImage($result->image,UPLOAD_PATH),'No Image',array( 'width' => 100, 'height' => 100 )) !!}
{!! Form::close() !!}
@endsection