@php($title = __('ftp::ftp_accounts.title_edit')) @extends('layouts.main') @section('breadclumbs') @endsection @section('content') @include('components.form.errors_block') {!! Form::model($ftpAccount, ['method' => 'PATCH','route' => ['admin.ftp.accounts.update', $ftpAccount->id]]) !!}
{{ Form::bsText('host') }} {{ Form::bsText('port') }}
{{ Form::label('password', __('ftp::ftp_accounts.password'), ['class' => 'control-label']) }}
{{ Form::input('password', 'password', $ftpAccount->password, ['class' => 'form-control password', 'autocomplete' => 'new-password']) }}
{{ Form::bsText('dir') }}
{{ Form::submit(__('main.save'), ['class' => 'btn btn-success']) }} {!! Form::close() !!} @endsection @section('footer-scripts') @endsection