@extends('layouts.app') @section('content')
@include('admin.sidebar')
Create New tool_creation


@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => '/store/tool_creation', 'class' => 'form-horizontal', 'files' => true]) !!} @include ('store.tool_creation.form') {!! Form::close() !!}
@endsection