@extends ('backend.layouts.app') @section ('title', 'Holding | Create Holding') @section('after-styles') @endsection @section('page-header')

Holding Management Create Holding

@endsection @section('content') {{ Form::open(['route' => 'admin.holding.holding.store', 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'create-partner']) }}

Create Holding

@include('backend.holding.partials.holding-header-buttons')
{{ Form::label('name', 'Name', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter holding name']) }}
{{ Form::label('image', 'Choose logo', ['class' => 'col-lg-2 control-label']) }}
{{ Form::file('image', null, ['class' => 'form-control', 'placeholder' => 'Choose logo']) }}
{{ Form::label('percentage', 'Percentage', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('percentage', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter percentage']) }}
{{ Form::label('sort', 'Sort', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('sort', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter sort']) }}
{{ link_to_route('admin.holding.holding.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection